crypto/internal/nistec.P224Point.x (field)

24 uses

	crypto/internal/nistec (current package)
		p224.go#L24: 	x, y, z *fiat.P224Element
		p224.go#L30: 		x: new(fiat.P224Element),
		p224.go#L38: 	p.x.SetBytes([]byte{0xb7, 0xe, 0xc, 0xbd, 0x6b, 0xb4, 0xbf, 0x7f, 0x32, 0x13, 0x90, 0xb9, 0x4a, 0x3, 0xc1, 0xd3, 0x56, 0xc2, 0x11, 0x22, 0x34, 0x32, 0x80, 0xd6, 0x11, 0x5c, 0x1d, 0x21})
		p224.go#L46: 	p.x.Set(q.x)
		p224.go#L75: 		p.x.Set(x)
		p224.go#L100: 		p.x.Set(x)
		p224.go#L158: 	x := new(fiat.P224Element).Mul(p.x, zinv)
		p224.go#L182: 	x := new(fiat.P224Element).Mul(p.x, zinv)
		p224.go#L203: 	x := new(fiat.P224Element).Mul(p.x, zinv)
		p224.go#L219: 	t0 := new(fiat.P224Element).Mul(p1.x, p2.x)  // t0 := X1 * X2
		p224.go#L222: 	t3 := new(fiat.P224Element).Add(p1.x, p1.y)  // t3 := X1 + Y1
		p224.go#L223: 	t4 := new(fiat.P224Element).Add(p2.x, p2.y)  // t4 := X2 + Y2
		p224.go#L232: 	x3.Add(p1.x, p1.z)                           // X3 := X1 + Z1
		p224.go#L233: 	y3 := new(fiat.P224Element).Add(p2.x, p2.z)  // Y3 := X2 + Z2
		p224.go#L263: 	q.x.Set(x3)
		p224.go#L274: 	t0 := new(fiat.P224Element).Square(p.x)      // t0 := X ^ 2
		p224.go#L277: 	t3 := new(fiat.P224Element).Mul(p.x, p.y)    // t3 := X * Y
		p224.go#L279: 	z3 := new(fiat.P224Element).Mul(p.x, p.z)    // Z3 := X * Z
		p224.go#L309: 	q.x.Set(x3)
		p224.go#L317: 	q.x.Select(p1.x, p2.x, cond)